home *** CD-ROM | disk | FTP | other *** search
- ; MOVING BALL
- ; Cyber Control motion demonstration
- ; by Dann Parks
- ; Copyright 1989 Antic Publishing, Inc.
- ;-----------------------------------------------------------------------
-
- new:view solid:draft:; This part sets up the basic
- cam 1 20,20,0:; parameters of the view. Boosting
- zoom 175:perspec 999:ambient 2:; the ambient light helps the ball
- clrbgnd:; stand out against the background.
- ;-----------------------------------------------------------------------
- defpt 1,-1500,-1500,1000:; These are the points for the
- defpt 1,-2000,2000,666:; movement spline.
- defpt 1,2000,2000,333:
- defpt 1,2000,-2000,0
- defpt 1,-2000,-2000,-333
- defpt 1,-2000,2000,-666
- defpt 1,1500,1500,-1000
-
- defspline 1,1001,b:; This creates the movement spline
- ; divided into 1001 segments.
- ;-----------------------------------------------------------------------
- ; This section (and the sub-routines
- ; at the end of the program) builds
- ; the dialog box to allow you to
- ; choose the type of control spline.
-
- @INFO
- input "Use Control Point Set:1,2,3,4(.3D2 File)",choice
- if choice=1 then gosub CONTROL1
- if choice=2 then gosub CONTROL2
- if choice=3 then gosub CONTROL3
- if choice=4 then gosub CONTROL4
- if choice<1 then bell:goto INFO
- if choice>4 then bell:goto INFO
- ;-----------------------------------------------------------------------
-
- defspline 2,60,b:; * This defines the control spline
- ; based on the information in the
- ; sub-routines or the .3D2 file.
- ;-----------------------------------------------------------------------
-
- sph3 ball,14:; This builds the ball and scales it.
- group a:clrgrp:select ball
- scale 50
- ;-----------------------------------------------------------------------
- cube mkr,7:; * This makes the marker that will be
- group d:clrgrp:select mkr:; * moved along the control spline.
- for shrink=1 to 4:; *
- scale 50:; *
- next shrink:; *
- ;-----------------------------------------------------------------------
- cube table,7:; The table is just a visual element
- group b:clrgrp:select table:; to help aid in perception of
- for squish=1 to 5:; movement. It is made from a cube,
- axisscale 120,120,50:; scaled and moved into position.
- next squish
- xlate 0,0,-1500
- ;-----------------------------------------------------------------------
- for move=0 to 59:; * This is the main loop.
-
- group d:clrgrp:select mkr:; * It selects the marker, moves
- moveto s2x(move),s2y(move),s2z(move):; * it to the next position on
- grpcent xpos,ypos,zpos:; * the control spline (S2) and
- place=int (ypos):; * determines its coordinates.
- if place<0 then place=0:; * The Y coord. is then used
- if place>1000 then place=1000:; * as the position on the
- ; movement spline (S1) to
- group a:clrgrp:select ball:; * which the ball is moved.
- moveto s1x(place),s1y(place),s1z(place):;*
- ;-----------------------------------------------------------------------
- group b:clrgrp:select ball,table:; The objects are selected
- superview:record:; and recorded.
-
- next move
- ;-----------------------------------------------------------------------
- rstop
- end
- ;-----------------------------------------------------------------------
- @CONTROL1:; These are the sub-routines that
- defpt 2,0,0,0:; determine the shape of the control
- defpt 2,-500,0,0:; splines. You can manipulate the
- defpt 2,-500,500,0:; points here as numbers, or as
- defpt 2,-500,1000,0:; objects in the CONTROL.3D2 file.
- defpt 2,0,1000,0
- rstart "A:\CONTROL1",M
- RETURN
-
- @CONTROL2
- defpt 2,0,0,0
- defpt 2,-500,0,0
- defpt 2,-500,500,0
- defpt 2,500,500,0
- defpt 2,500,700,0
- defpt 2,0,1000,0
- rstart "A:\CONTROL2",M
- RETURN
-
- @CONTROL3
- defpt 2,0,0,0
- defpt 2,-500,500,0
- defpt 2,-500,1000,0
- defpt 2,500,1000,0
- defpt 2,0,500,0
- rstart "A:\CONTROL3",M
- RETURN
-
- @CONTROL4
- merge3d "A\CONTROL.3D2":; *
- group a:clrgrp:select box1:grpcent box1x,box1y,box1z:; *
- group a:clrgrp:select box2:grpcent box2x,box2y,box2z:; *
- group a:clrgrp:select box3:grpcent box3x,box3y,box3z:; *
- group a:clrgrp:select box4:grpcent box4x,box4y,box4z:; *
- group a:clrgrp:select box5:grpcent box5x,box5y,box5z:; *
-
- defpt 2,box1x,box1y,box1z:; *
- defpt 2,box2x,box2y,box2z:; *
- defpt 2,box3x,box3y,box3z:; *
- defpt 2,box4x,box4y,box4z:; *
- defpt 2,box5x,box5y,box5z:; *
- rstart "A:\CONTROL4",M
- RETURN
-
-